home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000217-20000824 / 000367_news@columbia.edu _Tue Jun 13 13:09:15 2000.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2])
  3.     by uhaligani.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id NAA18536
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Tue, 13 Jun 2000 13:09:14 -0400 (EDT)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id NAA03175
  7.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 13 Jun 2000 13:09:13 -0400 (EDT)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id MAA29192
  10.     for kermit.misc@watsun.cc.columbia.edu; Tue, 13 Jun 2000 12:39:42 -0400 (EDT)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. From: fdc@columbia.edu (Frank da Cruz)
  13. Subject: Re: hardwired terminal
  14. Date: 13 Jun 2000 16:39:41 GMT
  15. Organization: Columbia University
  16. Message-ID: <8i5o4d$sg5$1@newsmaster.cc.columbia.edu>
  17. To: kermit.misc@columbia.edu
  18.  
  19. In article <39465238.27E3AB4C@cisco.com>,
  20. Rod Jackson  <rodjacks@cisco.com> wrote:
  21. : I have used kermit on linux for years, and just installed the redhat package
  22. : for 7.0 on a laptop. I invoke kermit, then set line /dev/ttyS0 , but kermit
  23. : says "/dev/ttyS0 is not a terminal device".  I ran setserial, but this has
  24. : no effect.  I am just trying to use kermit on a hard terminal
  25. : to log into the serial port of a router. Can someone give me a clue?
  26. The same thing would happen with Minicom, Seyon, cu, etc.  I'm not a Linux
  27. system administration expert, but you probably have to create and configure
  28. the serial devices somehow.  I'm sure the exact procedure varies from one
  29. Linux distribution (and version) to the next.  Start with the Linux
  30. Serial-HOWTO:
  31.  
  32.   http://www.linuxdoc.org/HOWTO/Serial-HOWTO.html
  33.  
  34. Once you've figured this out, be sure to give the C-Kermit binary the
  35. appropriate owner, group, and permissions so it can access the serial device.
  36. These are normally the same as cu:
  37.  
  38.   $ whereis cu
  39.   cu: /usr/bin/cu /usr/man/man1/cu.1
  40.   $ ls -ldga /usr/bin/cu
  41.   -r-sr-sr-x   1 uucp    uucp    127924 Aug 23  1999 /usr/bin/cu
  42.   $
  43.  
  44. - Frank